home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / MacPerl Source ƒ / MacPerl5 / pod / modpods / Finddepth.pod < prev    next >
Encoding:
Text File  |  1994-12-26  |  344 b   |  17 lines  |  [TEXT/MPS ]

  1. =head1 NAME
  2.  
  3. finddepth - traverse a directory structure depth-first
  4.  
  5. =head1 SYNOPSYS
  6.  
  7.     use File::Finddepth;
  8.     finddepth(\&wanted, '/foo','/bar');
  9.     sub wanted { ... }
  10.  
  11. =head2 DESCRIPTION
  12.  
  13. This is just like C<File::Find>, except that it does a depthfirst
  14. search uses finddepth() rather than find(), and performs a 
  15. depth-first search.  
  16.  
  17.